home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 23 / CU Amiga - Super CD-ROM 23 (June 1998).iso / CUCD / Programming / OUI / envman.lha / EnvManager / listreq.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-08  |  389 b   |  22 lines

  1. // listreq.h
  2. // 01.02.95
  3.  
  4.  
  5. #include <libraries/gadtools.h>
  6.  
  7. #include "screen.h"
  8. #include "window.h"
  9. #include "gadgets/listview.h"
  10.  
  11. class rlist : public window
  12. {
  13. public:
  14.     STRPTR titre ;
  15.     rlist(short l, short t, short w, short h) : window(l, t, w, h) {}
  16.     void        open(screen *) ;
  17.     void flist(gadget *g, unsigned long classe, unsigned short code) ;
  18. };
  19.  
  20.  
  21. IMPORT screen   *ns ;
  22.